home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / fix402s.zip / INDENT.BAT < prev    next >
DOS Batch File  |  1994-04-01  |  382b  |  13 lines

  1. @echo off
  2. if not ~%1 == ~ goto fixit
  3.     echo.
  4.     echo Utility:  INDENT.BAT - Performs special edit using FIX.COM..
  5.     echo Purpose:  Inserts an indentation tab at the beginning of every
  6.     echo           line (except 1st line) in an ascii text file.
  7.     echo Syntax:   INDENT  [d:][path]FILENAME  [d:][path][outfile]
  8.     echo.
  9.     goto end
  10. :fixit
  11.     @ echo on
  12. fix 0D0Ah 0D0A09h %1 %2
  13. :end